1.1 – Unit Conversions¶
1.1.0 – Learning Objectives¶
By the end of this section you should be able to:
- Understand the importance of unit conversion.
- Understand the concept of a conversion factor.
- Convert a unit from one to the other.
1.1.1 – Introduction¶
Knowing how to convert units is vital to engineers. Improperly converted units could mean the difference between life and death. With Canada’s proximity to the USA, it is very important to learn how to convert from imperial to metric and vise versa. It is also important to know how to convert from one unit to another in the same system such as \(m^3\) to \(l\).
1.1.2 – Conversion Factors¶
Conversion factors are ratios between two expressions of the same quantity. For an example:
or
or
1.1.3 – Converting Units¶
To convert a quantity from one unit to its equivalent of another unit, we will use conversion factors. For example, if we want to convert 7.2 km to meters, we would write:
As you can see, the original unit is km, the final unit is m, and the conversion factor is \(\frac{1,000m}{1km}\).
1.1.4 – Dimensional Homogeneity¶
Consider the equation
where the corrisponding units are
Now lets inputed values for each of the varibles in the first equation.
You may ask why \(45 \neq 45\) and that is because the dimensions are not homogenous. The units are not consistent. The velocity and accelartation are measured in seconds, yet the time we used is minutes. To correct the formula, we must change the minutes to seconds.
1.1.5 – Problem Statement¶
Problem 1¶
Question¶
Suppose the average house in Vancouver uses 342 gallons of water per day. How many \(cm^3\) of water per second is used on average? What are your conversion factors?
Answer¶
In [1]:
water_use = 342 # gallons/day
seconds_per_day = 86400 # s/day
litres_per_gallon = 3.78541 # l/gallon
cub_m_per_litre = 0.001 # m^3/l
cub_c_per_cub_m = 1000000 # cm^3/m^3
water_use_1 = water_use*litres_per_gallon*cub_m_per_litre*cub_c_per_cub_m/seconds_per_day
print("The average house uses",water_use_1,"cm^3/s")
The average house uses 14.983914583333332 cm^3/s
The conversion factors are:
Written out, this would look like:
Problem 2¶
Question¶
Despite the odds, the Kinger-Sporgan pipeline is being built to no environmental impact, which will soon supply BC and Washington state with 40,001 barrels of oil biweekly (including weekends). As an employee of Dusty Oil in Vancouver, you keep in contact with your colleagues in the United States and update them on the amount of oil being supplied. Since they use metric and you use the imperial system, what is the amount of oil transported, in metric?
Note: Use 1 oil barrel = 35 imperial gallons. Not US gallons.
Answer¶
According to the back of our text,
Let’s find out how many litres are in an imperial gallon first:
Now we know that biweekly, the total amount of oil transported is:
Let’s find how many litres are transported in seconds. Since I don’t know how many seconds are in a fortnight off the top of my head:
Finally, you can report that the total amount of oil transported, in metric units, is:
In [ ]: